home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 86
/
(Vol 86) My Disc.iso
/
Games
/
pet_1112.swf
/
scripts
/
__Packages
/
caurina
/
transitions
/
SpecialProperty.as
< prev
next >
Wrap
Text File
|
2009-04-14
|
751b
|
29 lines
class caurina.transitions.SpecialProperty
{
function SpecialProperty(p_getFunction, p_setFunction, p_parameters)
{
this.getValue = p_getFunction;
this.setValue = p_setFunction;
this.parameters = p_parameters;
}
function getValue(p_obj, p_parameters)
{
return null;
}
function setValue(p_obj, p_value, p_parameters)
{
}
function toString()
{
var _loc2_ = "";
_loc2_ += "[SpecialProperty ";
_loc2_ += "getValue:" + this.getValue.toString();
_loc2_ += ", ";
_loc2_ += "setValue:" + this.setValue.toString();
_loc2_ += ", ";
_loc2_ += "parameters:" + this.parameters.toString();
_loc2_ += "]";
return _loc2_;
}
}